added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2008 / CSAzureWorkflowService35 / WFServiceLibrary / IProcessDataWorkflow.cs
blobe140a50be72d483e06797e73641d19ff0bd42aeb
1 /****************************** Module Header ******************************\
2 * Module Name: IProcessDataWorkflowService.cs
3 * Project: WFServiceLibrary
4 * Copyright (c) Microsoft Corporation.
5 *
6 * This is the contract of the workflow service.
7 *
8 * This source is subject to the Microsoft Public License.
9 * See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
10 * All other rights reserved.
12 * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
13 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
15 \***************************************************************************/
17 using System;
18 using System.Collections.Generic;
19 using System.Linq;
20 using System.Text;
21 using System.ServiceModel;
23 namespace WFServiceLibrary
25 // This simple workflow service doesn't need sesion.
26 [ServiceContract(SessionMode = SessionMode.NotAllowed)]
27 public interface IProcessDataWorkflow
29 [OperationContract]
30 string ProcessData(int value);